* {
    box-sizing: border-box;
}

h1 {
text-align: center;
text-transform: uppercase;
font-weight: bold;
font-size: 1.5vw;
letter-spacing: 0.5vw;
}

@media screen and (max-width: 1200px) {
h1 {
font-size: 20px;
}

}

   .colortext {
     color: red;
   }
.row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	padding-bottom: 20px;
}
.sortCont {
  float: left;
  background-color: #ffffff;
  color: #000000;
  width: 30%;
  height: 33vw;
  margin: 1.5vw;
  text-align: center;
  padding-bottom: 15px;
  align-items: center;
  justify-content: center;
  	border-radius: 3px;
  -webkit-box-shadow: 1px 1px 13px 2px rgba(34, 60, 80, 0.2);
-moz-box-shadow: 1px 1px 13px 2px rgba(34, 60, 80, 0.2);
box-shadow: 1px 1px 13px 2px rgba(34, 60, 80, 0.2);
  	border-radius: 3px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.sortCont:hover {
	  -webkit-box-shadow: 1px 1px 13px 2px rgba(64, 80, 120, 0.8);
-moz-box-shadow: 1px 1px 13px 2px rgba(64, 80, 120, 0.8);
box-shadow: 1px 1px 13px 2px rgba(64, 80, 120, 0.8);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
	
}

.sortCont img {
width: auto;
height: 18vw;
  border: 2px double white;
  object-fit: contain;
}

.sortCont a {
text-decoration: none;
}

.sortCont p {
text-align: center;
font-family: 'Crimson Text', Georgia, Times, serif;
text-transform: uppercase;
font-weight: 800;
letter-spacing: 2px;
font-size: 1.2vw;
}

@media screen and (max-width: 1200px) {
  .sortCont {
    float: none;
    text-align: left;
	margin: 5px;
	width: 99%;
	height: auto;
  }
.sortCont img {
width: 100%;
height: auto;

} 
.sortCont p {
font-size: 15px;
}
 
}



.ist9 {
text-align: center;
font-weight: bold;
font-size: 15px;
padding-right: 6px;
padding-left: 6px;
padding-top: 4px;
}
.ist9 p{
text-align: center;
font-size: 1.2vw;
text-transform: uppercase;
font-weight: bold;
}
.show {
  display: block;
}
@media screen and (max-width: 1200px) {
.ist9 p{
font-size: 14px;
}

}

@media screen and (max-width: 600px) {
.modal-open {
width: 95%;
height: auto;
}
}


.modal {
    display: none; 
    position: fixed; 
    z-index: 1;
    padding-top: 100px; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%;
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 60%;
	height: 250px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}

@-webkit-keyframes animatetop {
    from {top:-300px; opacity:0} 
    to {top:0; opacity:1}
}

@keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

.close {
    color: #000000;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}


.modal-body {padding: 2px 3px;}




.row:after {
    content: "";
    display: table;
    clear: both;
}




.col {
    float: right;
	margin-top:-60px;
}
@media screen and (max-width: 800px) {
  .col {
    float: none;
    display: block;
    text-align: center;
	width: 100%;
  }
}

.btn-basket-all {
  border: none;
  outline: none;
  padding: 12px 25px;
  background-color: #00a86b;
  color: #ffffff;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
    border: 1px solid black;
	border-radius: 3px;
	margin-top: 10px;
}

.btn-basket-all:hover {
  background-color: #FFFFFF;
  color: #000000;
}
.btn-basket-add {
text-align: center;
  background-color: green;
  color: white;
  width: auto;
  font-weight: bold;
  padding: 8px;
  font-size: 20px;
  text-transform: uppercase;
  border: 1px solid black;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
}
@media screen and (max-width: 1200px) {
  .btn-basket-add {
	width: auto;
  }
}




.btn-basket-add:hover {
  background-color: #32CD32;
  color: #FFFFFF;
}
.btn-basket-add:active {
background-color: #000000;
}



.btn-basket-clear-close {
  border: none;
  outline: none;
  padding: 12px 25px;
  margin: 0 auto;
  background-color: #f1f1f1;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
    border: 1px solid black;
	border-radius: 3px;
}
@media screen and (max-width: 600px) {
    .btn-basket-clear-close {
        width: 100%;
		margin-top: 5px;
    }
}
.btn-basket-clear-close:hover {
  background-color: green;
  color: #FFFFFF;
}


.modal-content {
width: 80%;
height: auto;
padding: 40px;
}


.minimized {
  cursor: pointer;
}


#magnify {
  display: none;
  position: fixed;
  max-width: 850px;
  height: 550px;
  z-index: 9999;
}

#magnify img {
  width: 100%;
  height: 100%;
}

#overlay {
  display: none;
  background: #000;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0.9;
  z-index: 9990;
}

#close-popup {
  width: 30px;
  height: 30px;
  border-radius: 15px;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 15px;
}

#close-popup i {
  width: 30px;
  height: 30px;
  background: url(../img/close_13.png) no-repeat center center;
  background-size: 30px 30px;
  display: block;
}



@media screen and (max-width: 1200px) {
    .minimized {
        pointer-events: none;
    }


}



.modal_text {
    display: none; 
    position: fixed; 
    z-index: 1;
    padding-top: 100px; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4);
}

.modal_text-content {
    background-color: #fefefe;
	color: #000000;
	text-align: left;
    margin: 0 auto;
    padding: 20px;
    border: 5px double black;
    width: 70%;
}
.close {
    color: #aaaaaa;
    float: right;
    font-size: 30px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.small-cost {
font-size: 14px;
}
.small-cost1 {
font-size: 13px;
}
.small-cost2 {
font-size: 12px;
}


.modal-content {
width: 80%;
height: auto;
padding: 40px;
}
@media screen and (max-width: 600px) {
    .modal-content {
        width: 90%;
		height: auto;
		padding: 5px;
    }
}
.modal-title1 {
text-transform: uppercase;
font-weight: bold;
text-align: center;
font-size: 20px;
}
.container p {
font-weight: bold;
text-transform: uppercase;
}


.basket_container {
border: none;
width: 90%;
margin: 0 auto;
height: auto;
}
.price_pac {
display: flex;
margin: 5px;
  align-items: center;
  justify-content: center;
}
.price_pac a{
    color:#ffffff;
    text-decoration: none;
}

.card-item__add-button {
letter-spacing: 1px;
font-size: 1.5vw;
padding: 0.5vw;	
font-family: Times, serif;
}
@media screen and (max-width: 600px) {
.card-item__add-button {
letter-spacing: 1px;
font-size: 15px;
padding: 6px;	
}

}
.card-item__add-button:hover {
letter-spacing: 1.5px;
background-color: #32cd32;	
}

#preloader {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  z-index: 3000;
}
.pre_wrapper small {
  display: block;
  position: relative;
  text-align: center;
  font-size: 25px;
  top: 100px;
}
#preloader .icon_animate {
  position: absolute;
  width: 300px;
  height: 300px;
  background: url(../img/456.GIF) center center no-repeat; 
  background-size: 300px;
  margin-left: auto;
  margin-right: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
